home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / graphics / picfx / picfx.readme < prev    next >
Text File  |  1999-06-15  |  2KB  |  69 lines

  1. Short:Great CARDWARE image deformer (MUI) 0.88
  2. Author:Maxime Gamboni (gamboni@fastnet.ch)
  3. Uploader:Maxime Gamboni (gamboni@fastnet.ch)
  4. Type:gfx/edit
  5. Requires:15Bit or better display output on Cgx/p96; OS 3.0; MUI 3.x
  6. Requires:Lamp.mcc and SettingsWindow.mcc; look in dev/mui
  7. Version:0.88 Alpha
  8.  
  9. New E-mail address. Do not write anymore to maxime@intelcom.ch.
  10.  
  11. Note: If you would like to have AGA support, write to me.
  12. (Thirteen requests for now :)
  13.  
  14. This is an alpha software. Please read guide.
  15.  
  16. [New since 0.87 alpha:
  17. * Expression precalculation: About fourty percent time gained.
  18. * Many bugs removed.
  19. ]
  20.  
  21. This program lets you mix, deform or create picutes using functions.
  22. You can open as many windows as you want, each one can be either an
  23. image or a function.
  24.  
  25. The program calculates your r(x,y) g(x,y) and b(x,y) functions and
  26. writes a pixel of these red/green/blue components. You can refer to
  27. other projects in a formula:
  28. r(2,x,y) = 255-r(1,x,y)
  29. g(2,x,y) = 255-g(1,x,y)
  30. b(2,x,y) = 255-b(1,x,y)
  31. would output a negative version of project number one.
  32.  
  33. r(3,x,y) = (r(1,x,y)+r(2,x,y))/2
  34. g(3,x,y) = (g(1,x,y)+g(2,x,y))/2
  35. b(3,x,y) = (b(1,x,y)+b(2,x,y))/2
  36. would mix projects one and two into project three.
  37.  
  38. r(1,x,y) = x
  39. g(1,x,y) = y
  40. b(1,x,y) = 255-(x+y)/2
  41. would produce a nice spread..
  42.  
  43. This program is completely multi-tasking! Every time a rendering is
  44. started, a new task is created and its priority is a little lower
  45. than the main task, so the main program isn't slowed down when
  46. projects are rendering!
  47.  
  48. Amazingly fast rendering :-))
  49.  
  50. There is a friendly and intuitive user interface using MUI.
  51.  
  52. You have wide control over running projects: you can pause or change
  53. the sub-task priority while it is running directely from the
  54. user-interface. You can also hide windows to avoid cluttering the
  55. screen. Then you won't even remark that the computer is hard working
  56. on those projects :-)
  57.  
  58. Locale support; available languages (the guide is English-only):
  59. - English
  60. - French
  61. [Any translator is welcome!]
  62.  
  63. Although this program is postcardware, it has no restriction. You can
  64. unpack and use it without limitation now!
  65.  
  66. Written in AmigaE, full source-code is included (MUI custom classes
  67. with custom methods and attributes, Exec lists, tasks and ports,
  68. dynamic assembly code generation, ... are used).
  69.